Passed
Push — feature/psd-api ( 32e3af...2ac100 )
by Kevin Van
14:46 queued 07:49
created

psd.js ➔ PsdGamesOverviewPage   A

Complexity

Conditions 1

Size

Total Lines 20
Code Lines 17

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 17
dl 0
loc 20
rs 9.55
c 0
b 0
f 0
cc 1
1
import React from "react"
2
3
import Layout from "../layouts/index"
4
5
import SEO from "../components/seo"
6
import PsdTraining from "../components/psd-training"
7
8
export default function PsdGamesOverviewPage() {
9
  return (
10
    <Layout>
11
      <SEO
12
        lang="nl-BE"
13
        title="Matchoverzicht voorbereiding"
14
        description="Overzicht van de voorbereiding."
15
        path={this.props.location.pathname}
16
      />
17
18
19
      <div className={"games__template"}>
20
        Wedstrijden en trainingen<br/>
21
        <br/>
22
        -- Trainingsblock<br/>
23
        ?FDFD <PsdTraining /> ASLDLSD
24
        -- Friendlies block
25
      </div>
26
    </Layout>
27
  )
28
}
29